home *** CD-ROM | disk | FTP | other *** search
- #
- # Zustands-▄berwachungs-Script
- # State Watch Script
- #
- # Bombe
- #
- # created: 15-Jun-2000 Bernd
- # 09-Aug-2000 floh Missile-Aufschlag-Explosion (.iscollided)
- # 16-Jan-2002 peter Swarm-Missile spezifisches Zeug
- #
- # (C) COPYRIGHT 2000 RADONLABS GMBH
- #
-
- proc bombwatch_normal {} {
-
- if {[.iscollided] == "true"} {
- .announcestate explode
- } elseif {[.iskilled] == "true"} {
- # Bomben koennen u.U. abschiessbar sein
- .announcestate explode
- } elseif {[.isstatetimeover] == "true"} {
- .announcestate burn
- } elseif {[.hastargetchanged] == "true"} {
- .selectnewcommandlist /commandlists/missile/goto
- }
- }
-
- proc bombwatch_explode {} {
-
- if {[.isanimfinished] == "true"} {
- .setremoveable true
- }
- }
-
- proc bombwatch_burn {} {
-
- if {[.isanimfinished] == "true"} {
- .setremoveable true
- }
- }
-
-
-